home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1995 May / PC Answers CD-ROM 7 (Future Publishing) (May 1995).iso / vbits / code / shaw / vbits32 / vbitsdoc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-13  |  1.1 KB  |  45 lines

  1. // vbitsdoc.h : interface of the CVbits32Doc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CVbits32Doc : public CDocument
  6. {
  7. protected: // create from serialization only
  8.     CVbits32Doc();
  9.     DECLARE_DYNCREATE(CVbits32Doc)
  10.  
  11. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.  
  17. // Overrides
  18.     // ClassWizard generated virtual function overrides
  19.     //{{AFX_VIRTUAL(CVbits32Doc)
  20.     public:
  21.     virtual BOOL OnNewDocument();
  22.     //}}AFX_VIRTUAL
  23.  
  24. // Implementation
  25. public:
  26.     virtual ~CVbits32Doc();
  27.     virtual void Serialize(CArchive& ar);   // overridden for document i/o
  28. #ifdef _DEBUG
  29.     virtual void AssertValid() const;
  30.     virtual void Dump(CDumpContext& dc) const;
  31. #endif
  32.  
  33. protected:
  34.  
  35. // Generated message map functions
  36. protected:
  37.     //{{AFX_MSG(CVbits32Doc)
  38.         // NOTE - the ClassWizard will add and remove member functions here.
  39.         //    DO NOT EDIT what you see in these blocks of generated code !
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45.